This is set by the OpenShift Prow pod-utils:
https://github.com/openshift/test-infra/blob/master/prow/pod-utilities.md
Prep for having OSTree use that.
Closes: #1930
Approved by: jlebon
copy_out_gdtr_artifacts() {
# Keep this in sync with papr.yml
# TODO; Split the main/clang builds into separate build dirs
+ local artifactdir
+ artifactdir=${ARTIFACTS:-${topdir}}
for x in test-suite.log config.log gdtr-results; do
if test -e ${resultsdir}/${x}; then
- mv ${resultsdir}/${x} ${topdir}
+ mv ${resultsdir}/${x} ${artifactdir}
fi
done
}